Carbon


QDArcProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDArcProcPtr) (
    GrafVerb verb, 
    Rect *r, 
    SInt16 startAngle, 
    SInt16 arcAngle
);

You would declare your function like this if you were to name it MyQDArcCallback:

void MyQDArcCallback (
    GrafVerb verb, 
    Rect *r, 
    SInt16 startAngle, 
    SInt16 arcAngle
);

© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)